blob: 65df0b1f3c6be05811f8a029a214ed2979dfcae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import { Separator } from "@/components/ui/separator"
import { type SearchParams } from "@/types/table"
import { getValidFilters } from "@/lib/data-table"
import { searchParamsCache } from "@/lib/vendor-document-list/validations"
import { getVendorDocuments } from "@/lib/vendor-document-list/service"
import { DocumentsTable } from "@/lib/vendor-document-list/table/doc-table"
interface IndexPageProps {
params: {
contractId: string // Updated from 'id' to 'contractId' to match route parameter
}
searchParams: Promise<SearchParams>
}
export default async function DocumentListPage(props: IndexPageProps) {
const resolvedParams = await props.params
const contractId = resolvedParams.contractId // Updated from 'id' to 'contractId'
const idAsNumber = Number(contractId)
// 2) SearchParams 파싱 (Zod)
// - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼
const searchParams = await props.searchParams
const search = searchParamsCache.parse(searchParams)
const validFilters = getValidFilters(search.filters)
const projectType = searchParams.projectType === "plant" ? "plant" : "ship"
const promises = Promise.all([
getVendorDocuments({
...search,
filters: validFilters,
}, idAsNumber)
])
// 4) 렌더링
return (
<div className="space-y-6">
<div>
<DocumentsTable promises={promises} selectedPackageId={idAsNumber} projectType={projectType}/>
</div>
</div>
)
}
|